home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright© 1994 Mikhail Fridberg. Part of this code is copyrighted by Steve Falkenburg
-
- Telnet-based talk server/client
-
- connection management is done through the use of Operating System queues to simplify tracking
- and usage.
- */
-
- #include <CommResources.h>
- #include <Terminals.h>
- #include <Connections.h>
-
- #include "const.h"
- #include "globals.h"
- #include "utils.h"
-
-
- /* called in response to errors. we just do a debugstr here */
-
- void DoError(OSErr err)
- {
- Str255 errStr;
-
- NumToString(err,errStr);
- DebugStr(errStr);
- }